home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -seriously_amiga- / shareware / programming / basic / guitoolkit / arexx / moveallgads.rx next >
Text File  |  1998-01-05  |  214b  |  15 lines

  1. /* This script will move all gadgets xoffset and yoffset  */
  2.  
  3. address "GUITKREXX"
  4. Options Results
  5. xoff=0
  6. yoff=10
  7.  
  8. NoOfGadgets
  9. n=Result
  10. do loop = 1 to n
  11.     MoveGadget loop xoff yoff
  12. end
  13. UpDateDisplay    
  14. say "all done!"
  15.